home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / pyshared / zope.interface.egg-info / PKG-INFO < prev    next >
Text File  |  2009-09-14  |  61KB  |  1,707 lines

  1. Metadata-Version: 1.0
  2. Name: zope.interface
  3. Version: 3.5.2
  4. Summary: Interfaces for Python
  5. Home-page: http://pypi.python.org/pypi/zope.interface
  6. Author: Zope Corporation and Contributors
  7. Author-email: zope-dev@zope.org
  8. License: ZPL 2.1
  9. Description: *This package is intended to be independently reusable in any Python
  10.         project. It is maintained by the* `Zope Toolkit project <http://docs.zope.org/zopetoolkit/>`_.
  11.         
  12.         This package provides an implementation of `object interfaces` for Python.
  13.         Interfaces are a mechanism for labeling objects as conforming to a given
  14.         API or contract. So, this package can be considered as implementation of
  15.         the `Design By Contract`_ methodology support in Python.
  16.         
  17.         .. _Design By Contract: http://en.wikipedia.org/wiki/Design_by_contract
  18.         
  19.         Detailed Documentation
  20.         **********************
  21.         
  22.         .. contents::
  23.         
  24.         ==========
  25.         Interfaces
  26.         ==========
  27.         
  28.         Interfaces are objects that specify (document) the external behavior
  29.         of objects that "provide" them.  An interface specifies behavior
  30.         through:
  31.         
  32.         - Informal documentation in a doc string
  33.         
  34.         - Attribute definitions
  35.         
  36.         - Invariants, which are conditions that must hold for objects that
  37.         provide the interface
  38.         
  39.         Attribute definitions specify specific attributes. They define the
  40.         attribute name and provide documentation and constraints of attribute
  41.         values.  Attribute definitions can take a number of forms, as we'll
  42.         see below.
  43.         
  44.         Defining interfaces
  45.         ===================
  46.         
  47.         Interfaces are defined using Python class statements::
  48.         
  49.         >>> import zope.interface
  50.         >>> class IFoo(zope.interface.Interface):
  51.         ...    """Foo blah blah"""
  52.         ...
  53.         ...    x = zope.interface.Attribute("""X blah blah""")
  54.         ...
  55.         ...    def bar(q, r=None):
  56.         ...        """bar blah blah"""
  57.         
  58.         In the example above, we've created an interface, `IFoo`.  We
  59.         subclassed `zope.interface.Interface`, which is an ancestor interface for
  60.         all interfaces, much as `object` is an ancestor of all new-style
  61.         classes [#create]_.   The interface is not a class, it's an Interface,
  62.         an instance of `InterfaceClass`::
  63.         
  64.         >>> type(IFoo)
  65.         <class 'zope.interface.interface.InterfaceClass'>
  66.         
  67.         We can ask for the interface's documentation::
  68.         
  69.         >>> IFoo.__doc__
  70.         'Foo blah blah'
  71.         
  72.         and its name::
  73.         
  74.         >>> IFoo.__name__
  75.         'IFoo'
  76.         
  77.         and even its module::
  78.         
  79.         >>> IFoo.__module__
  80.         '__main__'
  81.         
  82.         The interface defined two attributes:
  83.         
  84.         `x`
  85.         This is the simplest form of attribute definition.  It has a name
  86.         and a doc string.  It doesn't formally specify anything else.
  87.         
  88.         `bar`
  89.         This is a method.  A method is defined via a function definition.  A
  90.         method is simply an attribute constrained to be a callable with a
  91.         particular signature, as provided by the function definition.
  92.         
  93.         Note that `bar` doesn't take a `self` argument.  Interfaces document
  94.         how an object is *used*.  When calling instance methods, you don't
  95.         pass a `self` argument, so a `self` argument isn't included in the
  96.         interface signature.  The `self` argument in instance methods is
  97.         really an implementation detail of Python instances. Other objects,
  98.         besides instances can provide interfaces and their methods might not
  99.         be instance methods. For example, modules can provide interfaces and
  100.         their methods are usually just functions.  Even instances can have
  101.         methods that are not instance methods.
  102.         
  103.         You can access the attributes defined by an interface using mapping
  104.         syntax::
  105.         
  106.         >>> x = IFoo['x']
  107.         >>> type(x)
  108.         <class 'zope.interface.interface.Attribute'>
  109.         >>> x.__name__
  110.         'x'
  111.         >>> x.__doc__
  112.         'X blah blah'
  113.         
  114.         >>> IFoo.get('x').__name__
  115.         'x'
  116.         
  117.         >>> IFoo.get('y')
  118.         
  119.         You can use `in` to determine if an interface defines a name::
  120.         
  121.         >>> 'x' in IFoo
  122.         True
  123.         
  124.         You can iterate over interfaces to get the names they define::
  125.         
  126.         >>> names = list(IFoo)
  127.         >>> names.sort()
  128.         >>> names
  129.         ['bar', 'x']
  130.         
  131.         Remember that interfaces aren't classes. You can't access attribute
  132.         definitions as attributes of interfaces::
  133.         
  134.         >>> IFoo.x
  135.         Traceback (most recent call last):
  136.         File "<stdin>", line 1, in ?
  137.         AttributeError: 'InterfaceClass' object has no attribute 'x'
  138.         
  139.         Methods provide access to the method signature::
  140.         
  141.         >>> bar = IFoo['bar']
  142.         >>> bar.getSignatureString()
  143.         '(q, r=None)'
  144.         
  145.         TODO
  146.         Methods really should have a better API.  This is something that
  147.         needs to be improved.
  148.         
  149.         Declaring interfaces
  150.         ====================
  151.         
  152.         Having defined interfaces, we can *declare* that objects provide
  153.         them.  Before we describe the details, lets define some terms:
  154.         
  155.         *provide*
  156.         We say that objects *provide* interfaces.  If an object provides an
  157.         interface, then the interface specifies the behavior of the
  158.         object. In other words, interfaces specify the behavior of the
  159.         objects that provide them.
  160.         
  161.         *implement*
  162.         We normally say that classes *implement* interfaces.  If a class
  163.         implements an interface, then the instances of the class provide
  164.         the interface.  Objects provide interfaces that their classes
  165.         implement [#factory]_.  (Objects can provide interfaces directly,
  166.         in addition to what their classes implement.)
  167.         
  168.         It is important to note that classes don't usually provide the
  169.         interfaces that they implement.
  170.         
  171.         We can generalize this to factories.  For any callable object we
  172.         can declare that it produces objects that provide some interfaces
  173.         by saying that the factory implements the interfaces.
  174.         
  175.         Now that we've defined these terms, we can talk about the API for
  176.         declaring interfaces.
  177.         
  178.         Declaring implemented interfaces
  179.         --------------------------------
  180.         
  181.         The most common way to declare interfaces is using the implements
  182.         function in a class statement::
  183.         
  184.         >>> class Foo:
  185.         ...     zope.interface.implements(IFoo)
  186.         ...
  187.         ...     def __init__(self, x=None):
  188.         ...         self.x = x
  189.         ...
  190.         ...     def bar(self, q, r=None):
  191.         ...         return q, r, self.x
  192.         ...
  193.         ...     def __repr__(self):
  194.         ...         return "Foo(%s)" % self.x
  195.         
  196.         
  197.         In this example, we declared that `Foo` implements `IFoo`. This means
  198.         that instances of `Foo` provide `IFoo`.  Having made this declaration,
  199.         there are several ways we can introspect the declarations.  First, we
  200.         can ask an interface whether it is implemented by a class::
  201.         
  202.         >>> IFoo.implementedBy(Foo)
  203.         True
  204.         
  205.         And we can ask whether an interface is provided by an object::
  206.         
  207.         >>> foo = Foo()
  208.         >>> IFoo.providedBy(foo)
  209.         True
  210.         
  211.         Of course, `Foo` doesn't provide `IFoo`, it implements it::
  212.         
  213.         >>> IFoo.providedBy(Foo)
  214.         False
  215.         
  216.         We can also ask what interfaces are implemented by an object::
  217.         
  218.         >>> list(zope.interface.implementedBy(Foo))
  219.         [<InterfaceClass __main__.IFoo>]
  220.         
  221.         It's an error to ask for interfaces implemented by a non-callable
  222.         object::
  223.         
  224.         >>> IFoo.implementedBy(foo)
  225.         Traceback (most recent call last):
  226.         ...
  227.         TypeError: ('ImplementedBy called for non-factory', Foo(None))
  228.         
  229.         >>> list(zope.interface.implementedBy(foo))
  230.         Traceback (most recent call last):
  231.         ...
  232.         TypeError: ('ImplementedBy called for non-factory', Foo(None))
  233.         
  234.         Similarly, we can ask what interfaces are provided by an object::
  235.         
  236.         >>> list(zope.interface.providedBy(foo))
  237.         [<InterfaceClass __main__.IFoo>]
  238.         >>> list(zope.interface.providedBy(Foo))
  239.         []
  240.         
  241.         We can declare interfaces implemented by other factories (besides
  242.         classes).  We do this using a Python-2.4-style decorator named
  243.         `implementer`.  In versions of Python before 2.4, this looks like::
  244.         
  245.         >>> def yfoo(y):
  246.         ...     foo = Foo()
  247.         ...     foo.y = y
  248.         ...     return foo
  249.         >>> yfoo = zope.interface.implementer(IFoo)(yfoo)
  250.         
  251.         >>> list(zope.interface.implementedBy(yfoo))
  252.         [<InterfaceClass __main__.IFoo>]
  253.         
  254.         Note that the implementer decorator may modify it's argument. Callers
  255.         should not assume that a new object is created.
  256.         
  257.         Also note that, at least for now, implementer can't be used with
  258.         classes::
  259.         
  260.         >>> zope.interface.implementer(IFoo)(Foo)
  261.         ... # doctest: +NORMALIZE_WHITESPACE
  262.         Traceback (most recent call last):
  263.         ...
  264.         TypeError: Can't use implementer with classes.
  265.         Use one of the class-declaration functions instead.
  266.         
  267.         Declaring provided interfaces
  268.         -----------------------------
  269.         
  270.         We can declare interfaces directly provided by objects.  Suppose that
  271.         we want to document what the `__init__` method of the `Foo` class
  272.         does.  It's not *really* part of `IFoo`.  You wouldn't normally call
  273.         the `__init__` method on Foo instances.  Rather, the `__init__` method
  274.         is part of the `Foo`'s `__call__` method::
  275.         
  276.         >>> class IFooFactory(zope.interface.Interface):
  277.         ...     """Create foos"""
  278.         ...
  279.         ...     def __call__(x=None):
  280.         ...         """Create a foo
  281.         ...
  282.         ...         The argument provides the initial value for x ...
  283.         ...         """
  284.         
  285.         It's the class that provides this interface, so we declare the
  286.         interface on the class::
  287.         
  288.         >>> zope.interface.directlyProvides(Foo, IFooFactory)
  289.         
  290.         And then, we'll see that Foo provides some interfaces::
  291.         
  292.         >>> list(zope.interface.providedBy(Foo))
  293.         [<InterfaceClass __main__.IFooFactory>]
  294.         >>> IFooFactory.providedBy(Foo)
  295.         True
  296.         
  297.         Declaring class interfaces is common enough that there's a special
  298.         declaration function for it, `classProvides`, that allows the
  299.         declaration from within a class statement::
  300.         
  301.         >>> class Foo2:
  302.         ...     zope.interface.implements(IFoo)
  303.         ...     zope.interface.classProvides(IFooFactory)
  304.         ...
  305.         ...     def __init__(self, x=None):
  306.         ...         self.x = x
  307.         ...
  308.         ...     def bar(self, q, r=None):
  309.         ...         return q, r, self.x
  310.         ...
  311.         ...     def __repr__(self):
  312.         ...         return "Foo(%s)" % self.x
  313.         
  314.         >>> list(zope.interface.providedBy(Foo2))
  315.         [<InterfaceClass __main__.IFooFactory>]
  316.         >>> IFooFactory.providedBy(Foo2)
  317.         True
  318.         
  319.         There's a similar function, `moduleProvides`, that supports interface
  320.         declarations from within module definitions.  For example, see the use
  321.         of `moduleProvides` call in `zope.interface.__init__`, which declares that
  322.         the package `zope.interface` provides `IInterfaceDeclaration`.
  323.         
  324.         Sometimes, we want to declare interfaces on instances, even though
  325.         those instances get interfaces from their classes.  Suppose we create
  326.         a new interface, `ISpecial`::
  327.         
  328.         >>> class ISpecial(zope.interface.Interface):
  329.         ...     reason = zope.interface.Attribute("Reason why we're special")
  330.         ...     def brag():
  331.         ...         "Brag about being special"
  332.         
  333.         We can make an existing foo instance special by providing `reason`
  334.         and `brag` attributes::
  335.         
  336.         >>> foo.reason = 'I just am'
  337.         >>> def brag():
  338.         ...      return "I'm special!"
  339.         >>> foo.brag = brag
  340.         >>> foo.reason
  341.         'I just am'
  342.         >>> foo.brag()
  343.         "I'm special!"
  344.         
  345.         and by declaring the interface::
  346.         
  347.         >>> zope.interface.directlyProvides(foo, ISpecial)
  348.         
  349.         then the new interface is included in the provided interfaces::
  350.         
  351.         >>> ISpecial.providedBy(foo)
  352.         True
  353.         >>> list(zope.interface.providedBy(foo))
  354.         [<InterfaceClass __main__.ISpecial>, <InterfaceClass __main__.IFoo>]
  355.         
  356.         We can find out what interfaces are directly provided by an object::
  357.         
  358.         >>> list(zope.interface.directlyProvidedBy(foo))
  359.         [<InterfaceClass __main__.ISpecial>]
  360.         
  361.         >>> newfoo = Foo()
  362.         >>> list(zope.interface.directlyProvidedBy(newfoo))
  363.         []
  364.         
  365.         Inherited declarations
  366.         ----------------------
  367.         
  368.         Normally, declarations are inherited::
  369.         
  370.         >>> class SpecialFoo(Foo):
  371.         ...     zope.interface.implements(ISpecial)
  372.         ...     reason = 'I just am'
  373.         ...     def brag(self):
  374.         ...         return "I'm special because %s" % self.reason
  375.         
  376.         >>> list(zope.interface.implementedBy(SpecialFoo))
  377.         [<InterfaceClass __main__.ISpecial>, <InterfaceClass __main__.IFoo>]
  378.         
  379.         >>> list(zope.interface.providedBy(SpecialFoo()))
  380.         [<InterfaceClass __main__.ISpecial>, <InterfaceClass __main__.IFoo>]
  381.         
  382.         Sometimes, you don't want to inherit declarations.  In that case, you
  383.         can use `implementsOnly`, instead of `implements`::
  384.         
  385.         >>> class Special(Foo):
  386.         ...     zope.interface.implementsOnly(ISpecial)
  387.         ...     reason = 'I just am'
  388.         ...     def brag(self):
  389.         ...         return "I'm special because %s" % self.reason
  390.         
  391.         >>> list(zope.interface.implementedBy(Special))
  392.         [<InterfaceClass __main__.ISpecial>]
  393.         
  394.         >>> list(zope.interface.providedBy(Special()))
  395.         [<InterfaceClass __main__.ISpecial>]
  396.         
  397.         External declarations
  398.         ---------------------
  399.         
  400.         Normally, we make implementation declarations as part of a class
  401.         definition. Sometimes, we may want to make declarations from outside
  402.         the class definition. For example, we might want to declare interfaces
  403.         for classes that we didn't write.  The function `classImplements` can
  404.         be used for this purpose::
  405.         
  406.         >>> class C:
  407.         ...     pass
  408.         
  409.         >>> zope.interface.classImplements(C, IFoo)
  410.         >>> list(zope.interface.implementedBy(C))
  411.         [<InterfaceClass __main__.IFoo>]
  412.         
  413.         We can use `classImplementsOnly` to exclude inherited interfaces::
  414.         
  415.         >>> class C(Foo):
  416.         ...     pass
  417.         
  418.         >>> zope.interface.classImplementsOnly(C, ISpecial)
  419.         >>> list(zope.interface.implementedBy(C))
  420.         [<InterfaceClass __main__.ISpecial>]
  421.         
  422.         
  423.         
  424.         Declaration Objects
  425.         -------------------
  426.         
  427.         When we declare interfaces, we create *declaration* objects.  When we
  428.         query declarations, declaration objects are returned::
  429.         
  430.         >>> type(zope.interface.implementedBy(Special))
  431.         <class 'zope.interface.declarations.Implements'>
  432.         
  433.         Declaration objects and interface objects are similar in many ways. In
  434.         fact, they share a common base class.  The important thing to realize
  435.         about them is that they can be used where interfaces are expected in
  436.         declarations. Here's a silly example::
  437.         
  438.         >>> class Special2(Foo):
  439.         ...     zope.interface.implementsOnly(
  440.         ...          zope.interface.implementedBy(Foo),
  441.         ...          ISpecial,
  442.         ...          )
  443.         ...     reason = 'I just am'
  444.         ...     def brag(self):
  445.         ...         return "I'm special because %s" % self.reason
  446.         
  447.         The declaration here is almost the same as
  448.         ``zope.interface.implements(ISpecial)``, except that the order of
  449.         interfaces in the resulting declaration is different::
  450.         
  451.         >>> list(zope.interface.implementedBy(Special2))
  452.         [<InterfaceClass __main__.IFoo>, <InterfaceClass __main__.ISpecial>]
  453.         
  454.         
  455.         Interface Inheritance
  456.         =====================
  457.         
  458.         Interfaces can extend other interfaces. They do this simply by listing
  459.         the other interfaces as base interfaces::
  460.         
  461.         >>> class IBlat(zope.interface.Interface):
  462.         ...     """Blat blah blah"""
  463.         ...
  464.         ...     y = zope.interface.Attribute("y blah blah")
  465.         ...     def eek():
  466.         ...         """eek blah blah"""
  467.         
  468.         >>> IBlat.__bases__
  469.         (<InterfaceClass zope.interface.Interface>,)
  470.         
  471.         >>> class IBaz(IFoo, IBlat):
  472.         ...     """Baz blah"""
  473.         ...     def eek(a=1):
  474.         ...         """eek in baz blah"""
  475.         ...
  476.         
  477.         >>> IBaz.__bases__
  478.         (<InterfaceClass __main__.IFoo>, <InterfaceClass __main__.IBlat>)
  479.         
  480.         >>> names = list(IBaz)
  481.         >>> names.sort()
  482.         >>> names
  483.         ['bar', 'eek', 'x', 'y']
  484.         
  485.         Note that `IBaz` overrides eek::
  486.         
  487.         >>> IBlat['eek'].__doc__
  488.         'eek blah blah'
  489.         >>> IBaz['eek'].__doc__
  490.         'eek in baz blah'
  491.         
  492.         We were careful to override eek in a compatible way.  When extending
  493.         an interface, the extending interface should be compatible [#compat]_
  494.         with the extended interfaces.
  495.         
  496.         We can ask whether one interface extends another::
  497.         
  498.         >>> IBaz.extends(IFoo)
  499.         True
  500.         >>> IBlat.extends(IFoo)
  501.         False
  502.         
  503.         Note that interfaces don't extend themselves::
  504.         
  505.         >>> IBaz.extends(IBaz)
  506.         False
  507.         
  508.         Sometimes we wish they did, but we can, instead use `isOrExtends`::
  509.         
  510.         >>> IBaz.isOrExtends(IBaz)
  511.         True
  512.         >>> IBaz.isOrExtends(IFoo)
  513.         True
  514.         >>> IFoo.isOrExtends(IBaz)
  515.         False
  516.         
  517.         When we iterate over an interface, we get all of the names it defines,
  518.         including names defined by base interfaces. Sometimes, we want *just*
  519.         the names defined by the interface directly. We bane use the `names`
  520.         method for that::
  521.         
  522.         >>> list(IBaz.names())
  523.         ['eek']
  524.         
  525.         Inheritance of attribute specifications
  526.         ---------------------------------------
  527.         
  528.         An interface may override attribute definitions from base interfaces.
  529.         If two base interfaces define the same attribute, the attribute is
  530.         inherited from the most specific interface. For example, with::
  531.         
  532.         >>> class IBase(zope.interface.Interface):
  533.         ...
  534.         ...     def foo():
  535.         ...         "base foo doc"
  536.         
  537.         >>> class IBase1(IBase):
  538.         ...     pass
  539.         
  540.         >>> class IBase2(IBase):
  541.         ...
  542.         ...     def foo():
  543.         ...         "base2 foo doc"
  544.         
  545.         >>> class ISub(IBase1, IBase2):
  546.         ...     pass
  547.         
  548.         ISub's definition of foo is the one from IBase2, since IBase2 is more
  549.         specific that IBase::
  550.         
  551.         >>> ISub['foo'].__doc__
  552.         'base2 foo doc'
  553.         
  554.         Note that this differs from a depth-first search.
  555.         
  556.         Sometimes, it's useful to ask whether an interface defines an
  557.         attribute directly.  You can use the direct method to get a directly
  558.         defined definitions::
  559.         
  560.         >>> IBase.direct('foo').__doc__
  561.         'base foo doc'
  562.         
  563.         >>> ISub.direct('foo')
  564.         
  565.         Specifications
  566.         --------------
  567.         
  568.         Interfaces and declarations are both special cases of specifications.
  569.         What we described above for interface inheritance applies to both
  570.         declarations and specifications.  Declarations actually extend the
  571.         interfaces that they declare::
  572.         
  573.         >>> class Baz:
  574.         ...     zope.interface.implements(IBaz)
  575.         
  576.         >>> baz_implements = zope.interface.implementedBy(Baz)
  577.         >>> baz_implements.__bases__
  578.         (<InterfaceClass __main__.IBaz>,)
  579.         
  580.         >>> baz_implements.extends(IFoo)
  581.         True
  582.         
  583.         >>> baz_implements.isOrExtends(IFoo)
  584.         True
  585.         >>> baz_implements.isOrExtends(baz_implements)
  586.         True
  587.         
  588.         Specifications (interfaces and declarations) provide an `__sro__`
  589.         that lists the specification and all of it's ancestors::
  590.         
  591.         >>> baz_implements.__sro__
  592.         (<implementedBy __main__.Baz>,
  593.         <InterfaceClass __main__.IBaz>,
  594.         <InterfaceClass __main__.IFoo>,
  595.         <InterfaceClass __main__.IBlat>,
  596.         <InterfaceClass zope.interface.Interface>)
  597.         
  598.         
  599.         Tagged Values
  600.         =============
  601.         
  602.         Interfaces and attribute descriptions support an extension mechanism,
  603.         borrowed from UML, called "tagged values" that lets us store extra
  604.         data::
  605.         
  606.         >>> IFoo.setTaggedValue('date-modified', '2004-04-01')
  607.         >>> IFoo.setTaggedValue('author', 'Jim Fulton')
  608.         >>> IFoo.getTaggedValue('date-modified')
  609.         '2004-04-01'
  610.         >>> IFoo.queryTaggedValue('date-modified')
  611.         '2004-04-01'
  612.         >>> IFoo.queryTaggedValue('datemodified')
  613.         >>> tags = list(IFoo.getTaggedValueTags())
  614.         >>> tags.sort()
  615.         >>> tags
  616.         ['author', 'date-modified']
  617.         
  618.         Function attributes are converted to tagged values when method
  619.         attribute definitions are created::
  620.         
  621.         >>> class IBazFactory(zope.interface.Interface):
  622.         ...     def __call__():
  623.         ...         "create one"
  624.         ...     __call__.return_type = IBaz
  625.         
  626.         >>> IBazFactory['__call__'].getTaggedValue('return_type')
  627.         <InterfaceClass __main__.IBaz>
  628.         
  629.         Tagged values can also be defined from within an interface definition::
  630.         
  631.         >>> class IWithTaggedValues(zope.interface.Interface):
  632.         ...     zope.interface.taggedValue('squish', 'squash')
  633.         >>> IWithTaggedValues.getTaggedValue('squish')
  634.         'squash'
  635.         
  636.         Invariants
  637.         ==========
  638.         
  639.         Interfaces can express conditions that must hold for objects that
  640.         provide them. These conditions are expressed using one or more
  641.         invariants.  Invariants are callable objects that will be called with
  642.         an object that provides an interface. An invariant raises an `Invalid`
  643.         exception if the condition doesn't hold.  Here's an example::
  644.         
  645.         >>> class RangeError(zope.interface.Invalid):
  646.         ...     """A range has invalid limits"""
  647.         ...     def __repr__(self):
  648.         ...         return "RangeError(%r)" % self.args
  649.         
  650.         >>> def range_invariant(ob):
  651.         ...     if ob.max < ob.min:
  652.         ...         raise RangeError(ob)
  653.         
  654.         Given this invariant, we can use it in an interface definition::
  655.         
  656.         >>> class IRange(zope.interface.Interface):
  657.         ...     min = zope.interface.Attribute("Lower bound")
  658.         ...     max = zope.interface.Attribute("Upper bound")
  659.         ...
  660.         ...     zope.interface.invariant(range_invariant)
  661.         
  662.         Interfaces have a method for checking their invariants::
  663.         
  664.         >>> class Range(object):
  665.         ...     zope.interface.implements(IRange)
  666.         ...
  667.         ...     def __init__(self, min, max):
  668.         ...         self.min, self.max = min, max
  669.         ...
  670.         ...     def __repr__(self):
  671.         ...         return "Range(%s, %s)" % (self.min, self.max)
  672.         
  673.         >>> IRange.validateInvariants(Range(1,2))
  674.         >>> IRange.validateInvariants(Range(1,1))
  675.         >>> IRange.validateInvariants(Range(2,1))
  676.         Traceback (most recent call last):
  677.         ...
  678.         RangeError: Range(2, 1)
  679.         
  680.         If you have multiple invariants, you may not want to stop checking
  681.         after the first error.  If you pass a list to `validateInvariants`,
  682.         then a single `Invalid` exception will be raised with the list of
  683.         exceptions as it's argument::
  684.         
  685.         >>> errors = []
  686.         >>> IRange.validateInvariants(Range(2,1), errors)
  687.         Traceback (most recent call last):
  688.         ...
  689.         Invalid: [RangeError(Range(2, 1))]
  690.         
  691.         And the list will be filled with the individual exceptions::
  692.         
  693.         >>> errors
  694.         [RangeError(Range(2, 1))]
  695.         
  696.         
  697.         >>> del errors[:]
  698.         
  699.         Adaptation
  700.         ==========
  701.         
  702.         Interfaces can be called to perform adaptation.
  703.         
  704.         The sematics based on those of the PEP 246 adapt function.
  705.         
  706.         If an object cannot be adapted, then a TypeError is raised::
  707.         
  708.         >>> class I(zope.interface.Interface):
  709.         ...     pass
  710.         
  711.         >>> I(0)
  712.         Traceback (most recent call last):
  713.         ...
  714.         TypeError: ('Could not adapt', 0, <InterfaceClass __main__.I>)
  715.         
  716.         
  717.         
  718.         unless an alternate value is provided as a second positional argument::
  719.         
  720.         >>> I(0, 'bob')
  721.         'bob'
  722.         
  723.         If an object already implements the interface, then it will be returned::
  724.         
  725.         >>> class C(object):
  726.         ...     zope.interface.implements(I)
  727.         
  728.         >>> obj = C()
  729.         >>> I(obj) is obj
  730.         True
  731.         
  732.         If an object implements __conform__, then it will be used::
  733.         
  734.         >>> class C(object):
  735.         ...     zope.interface.implements(I)
  736.         ...     def __conform__(self, proto):
  737.         ...          return 0
  738.         
  739.         >>> I(C())
  740.         0
  741.         
  742.         Adapter hooks (see __adapt__) will also be used, if present::
  743.         
  744.         >>> from zope.interface.interface import adapter_hooks
  745.         >>> def adapt_0_to_42(iface, obj):
  746.         ...     if obj == 0:
  747.         ...         return 42
  748.         
  749.         >>> adapter_hooks.append(adapt_0_to_42)
  750.         >>> I(0)
  751.         42
  752.         
  753.         >>> adapter_hooks.remove(adapt_0_to_42)
  754.         >>> I(0)
  755.         Traceback (most recent call last):
  756.         ...
  757.         TypeError: ('Could not adapt', 0, <InterfaceClass __main__.I>)
  758.         
  759.         __adapt__
  760.         ---------
  761.         
  762.         >>> class I(zope.interface.Interface):
  763.         ...     pass
  764.         
  765.         Interfaces implement the PEP 246 __adapt__ method.
  766.         
  767.         This method is normally not called directly. It is called by the PEP
  768.         246 adapt framework and by the interface __call__ operator.
  769.         
  770.         The adapt method is responsible for adapting an object to the
  771.         reciever.
  772.         
  773.         The default version returns None::
  774.         
  775.         >>> I.__adapt__(0)
  776.         
  777.         unless the object given provides the interface::
  778.         
  779.         >>> class C(object):
  780.         ...     zope.interface.implements(I)
  781.         
  782.         >>> obj = C()
  783.         >>> I.__adapt__(obj) is obj
  784.         True
  785.         
  786.         Adapter hooks can be provided (or removed) to provide custom
  787.         adaptation. We'll install a silly hook that adapts 0 to 42.
  788.         We install a hook by simply adding it to the adapter_hooks
  789.         list::
  790.         
  791.         >>> from zope.interface.interface import adapter_hooks
  792.         >>> def adapt_0_to_42(iface, obj):
  793.         ...     if obj == 0:
  794.         ...         return 42
  795.         
  796.         >>> adapter_hooks.append(adapt_0_to_42)
  797.         >>> I.__adapt__(0)
  798.         42
  799.         
  800.         Hooks must either return an adapter, or None if no adapter can
  801.         be found.
  802.         
  803.         Hooks can be uninstalled by removing them from the list::
  804.         
  805.         >>> adapter_hooks.remove(adapt_0_to_42)
  806.         >>> I.__adapt__(0)
  807.         
  808.         
  809.         .. [#create] The main reason we subclass `Interface` is to cause the
  810.         Python class statement to create an interface, rather
  811.         than a class.
  812.         
  813.         It's possible to create interfaces by calling a special
  814.         interface class directly.  Doing this, it's possible
  815.         (and, on rare occasions, useful) to create interfaces
  816.         that don't descend from `Interface`.  Using this
  817.         technique is beyond the scope of this document.
  818.         
  819.         .. [#factory] Classes are factories.  They can be called to create
  820.         their instances.  We expect that we will eventually
  821.         extend the concept of implementation to other kinds of
  822.         factories, so that we can declare the interfaces
  823.         provided by the objects created.
  824.         
  825.         .. [#compat] The goal is substitutability.  An object that provides an
  826.         extending interface should be substitutable for an object
  827.         that provides the extended interface.  In our example, an
  828.         object that provides IBaz should be usable whereever an
  829.         object that provides IBlat is expected.
  830.         
  831.         The interface implementation doesn't enforce this.
  832.         but maybe it should do some checks.
  833.         
  834.         ================
  835.         Adapter Registry
  836.         ================
  837.         
  838.         Adapter registries provide a way to register objects that depend on
  839.         one or more interface specifications and provide (perhaps indirectly)
  840.         some interface.  In addition, the registrations have names. (You can
  841.         think of the names as qualifiers of the provided interfaces.)
  842.         
  843.         The term "interface specification" refers both to interfaces and to
  844.         interface declarations, such as declarations of interfaces implemented
  845.         by a class.
  846.         
  847.         
  848.         Single Adapters
  849.         ===============
  850.         
  851.         Let's look at a simple example, using a single required specification::
  852.         
  853.         >>> from zope.interface.adapter import AdapterRegistry
  854.         >>> import zope.interface
  855.         
  856.         >>> class IR1(zope.interface.Interface):
  857.         ...     pass
  858.         >>> class IP1(zope.interface.Interface):
  859.         ...     pass
  860.         >>> class IP2(IP1):
  861.         ...     pass
  862.         
  863.         >>> registry = AdapterRegistry()
  864.         
  865.         We'll register an object that depends on IR1 and "provides" IP2::
  866.         
  867.         >>> registry.register([IR1], IP2, '', 12)
  868.         
  869.         Given the registration, we can look it up again::
  870.         
  871.         >>> registry.lookup([IR1], IP2, '')
  872.         12
  873.         
  874.         Note that we used an integer in the example.  In real applications,
  875.         one would use some objects that actually depend on or provide
  876.         interfaces. The registry doesn't care about what gets registered, so
  877.         we'll use integers and strings to keep the examples simple. There is
  878.         one exception.  Registering a value of None unregisters any
  879.         previously-registered value.
  880.         
  881.         If an object depends on a specification, it can be looked up with a
  882.         specification that extends the specification that it depends on::
  883.         
  884.         >>> class IR2(IR1):
  885.         ...     pass
  886.         >>> registry.lookup([IR2], IP2, '')
  887.         12
  888.         
  889.         We can use a class implementation specification to look up the object::
  890.         
  891.         >>> class C2:
  892.         ...     zope.interface.implements(IR2)
  893.         
  894.         >>> registry.lookup([zope.interface.implementedBy(C2)], IP2, '')
  895.         12
  896.         
  897.         
  898.         and it can be looked up for interfaces that its provided interface
  899.         extends::
  900.         
  901.         >>> registry.lookup([IR1], IP1, '')
  902.         12
  903.         >>> registry.lookup([IR2], IP1, '')
  904.         12
  905.         
  906.         But if you require a specification that doesn't extend the specification the
  907.         object depends on, you won't get anything::
  908.         
  909.         >>> registry.lookup([zope.interface.Interface], IP1, '')
  910.         
  911.         By the way, you can pass a default value to lookup::
  912.         
  913.         >>> registry.lookup([zope.interface.Interface], IP1, '', 42)
  914.         42
  915.         
  916.         If you try to get an interface the object doesn't provide, you also
  917.         won't get anything::
  918.         
  919.         >>> class IP3(IP2):
  920.         ...     pass
  921.         >>> registry.lookup([IR1], IP3, '')
  922.         
  923.         You also won't get anything if you use the wrong name::
  924.         
  925.         >>> registry.lookup([IR1], IP1, 'bob')
  926.         >>> registry.register([IR1], IP2, 'bob', "Bob's 12")
  927.         >>> registry.lookup([IR1], IP1, 'bob')
  928.         "Bob's 12"
  929.         
  930.         You can leave the name off when doing a lookup::
  931.         
  932.         >>> registry.lookup([IR1], IP1)
  933.         12
  934.         
  935.         If we register an object that provides IP1::
  936.         
  937.         >>> registry.register([IR1], IP1, '', 11)
  938.         
  939.         then that object will be prefered over O(12)::
  940.         
  941.         >>> registry.lookup([IR1], IP1, '')
  942.         11
  943.         
  944.         Also, if we register an object for IR2, then that will be prefered
  945.         when using IR2::
  946.         
  947.         >>> registry.register([IR2], IP1, '', 21)
  948.         >>> registry.lookup([IR2], IP1, '')
  949.         21
  950.         
  951.         Finding out what, if anything, is registered
  952.         --------------------------------------------
  953.         
  954.         We can ask if there is an adapter registered for a collection of
  955.         interfaces. This is different than lookup, because it looks for an
  956.         exact match.
  957.         
  958.         >>> print registry.registered([IR1], IP1)
  959.         11
  960.         
  961.         >>> print registry.registered([IR1], IP2)
  962.         12
  963.         
  964.         >>> print registry.registered([IR1], IP2, 'bob')
  965.         Bob's 12
  966.         
  967.         
  968.         >>> print registry.registered([IR2], IP1)
  969.         21
  970.         
  971.         >>> print registry.registered([IR2], IP2)
  972.         None
  973.         
  974.         In the last example, None was returned because nothing was registered
  975.         exactly for the given interfaces.
  976.         
  977.         lookup1
  978.         -------
  979.         
  980.         Lookup of single adapters is common enough that there is a specialized
  981.         version of lookup that takes a single required interface::
  982.         
  983.         >>> registry.lookup1(IR2, IP1, '')
  984.         21
  985.         >>> registry.lookup1(IR2, IP1)
  986.         21
  987.         
  988.         Actual Adaptation
  989.         -----------------
  990.         
  991.         The adapter registry is intended to support adaptation, where one
  992.         object that implements an interface is adapted to another object that
  993.         supports a different interface.  The adapter registry supports the
  994.         computation of adapters. In this case, we have to register adapter
  995.         factories::
  996.         
  997.         >>> class IR(zope.interface.Interface):
  998.         ...     pass
  999.         
  1000.         >>> class X:
  1001.         ...     zope.interface.implements(IR)
  1002.         
  1003.         >>> class Y:
  1004.         ...     zope.interface.implements(IP1)
  1005.         ...     def __init__(self, context):
  1006.         ...         self.context = context
  1007.         
  1008.         >>> registry.register([IR], IP1, '', Y)
  1009.         
  1010.         In this case, we registered a class as the factory. Now we can call
  1011.         `queryAdapter` to get the adapted object::
  1012.         
  1013.         >>> x = X()
  1014.         >>> y = registry.queryAdapter(x, IP1)
  1015.         >>> y.__class__.__name__
  1016.         'Y'
  1017.         >>> y.context is x
  1018.         True
  1019.         
  1020.         We can register and lookup by name too::
  1021.         
  1022.         >>> class Y2(Y):
  1023.         ...     pass
  1024.         
  1025.         >>> registry.register([IR], IP1, 'bob', Y2)
  1026.         >>> y = registry.queryAdapter(x, IP1, 'bob')
  1027.         >>> y.__class__.__name__
  1028.         'Y2'
  1029.         >>> y.context is x
  1030.         True
  1031.         
  1032.         When the adapter factory produces `None`, then this is treated as if no
  1033.         adapter has been found. This allows us to prevent adaptation (when desired)
  1034.         and let the adapter factory determine whether adaptation is possible based on
  1035.         the state of the object being adapted.
  1036.         
  1037.         >>> def factory(context):
  1038.         ...     if context.name == 'object':
  1039.         ...         return 'adapter'
  1040.         ...     return None
  1041.         
  1042.         >>> class Object(object):
  1043.         ...     zope.interface.implements(IR)
  1044.         ...     name = 'object'
  1045.         
  1046.         >>> registry.register([IR], IP1, 'conditional', factory)
  1047.         >>> obj = Object()
  1048.         >>> registry.queryAdapter(obj, IP1, 'conditional')
  1049.         'adapter'
  1050.         >>> obj.name = 'no object'
  1051.         >>> registry.queryAdapter(obj, IP1, 'conditional') is None
  1052.         True
  1053.         >>> registry.queryAdapter(obj, IP1, 'conditional', 'default')
  1054.         'default'
  1055.         
  1056.         An alternate method that provides the same function as `queryAdapter()` is
  1057.         `adapter_hook()`::
  1058.         
  1059.         >>> y = registry.adapter_hook(IP1, x)
  1060.         >>> y.__class__.__name__
  1061.         'Y'
  1062.         >>> y.context is x
  1063.         True
  1064.         >>> y = registry.adapter_hook(IP1, x, 'bob')
  1065.         >>> y.__class__.__name__
  1066.         'Y2'
  1067.         >>> y.context is x
  1068.         True
  1069.         
  1070.         The `adapter_hook()` simply switches the order of the object and
  1071.         interface arguments.  It is used to hook into the interface call
  1072.         mechanism.
  1073.         
  1074.         
  1075.         Default Adapters
  1076.         ----------------
  1077.         
  1078.         Sometimes, you want to provide an adapter that will adapt anything.
  1079.         For that, provide None as the required interface::
  1080.         
  1081.         >>> registry.register([None], IP1, '', 1)
  1082.         
  1083.         then we can use that adapter for interfaces we don't have specific
  1084.         adapters for::
  1085.         
  1086.         >>> class IQ(zope.interface.Interface):
  1087.         ...     pass
  1088.         >>> registry.lookup([IQ], IP1, '')
  1089.         1
  1090.         
  1091.         Of course, specific adapters are still used when applicable::
  1092.         
  1093.         >>> registry.lookup([IR2], IP1, '')
  1094.         21
  1095.         
  1096.         Class adapters
  1097.         --------------
  1098.         
  1099.         You can register adapters for class declarations, which is almost the
  1100.         same as registering them for a class::
  1101.         
  1102.         >>> registry.register([zope.interface.implementedBy(C2)], IP1, '', 'C21')
  1103.         >>> registry.lookup([zope.interface.implementedBy(C2)], IP1, '')
  1104.         'C21'
  1105.         
  1106.         Dict adapters
  1107.         -------------
  1108.         
  1109.         At some point it was impossible to register dictionary-based adapters due a
  1110.         bug. Let's make sure this works now:
  1111.         
  1112.         >>> adapter = {}
  1113.         >>> registry.register((), IQ, '', adapter)
  1114.         >>> registry.lookup((), IQ, '') is adapter
  1115.         True
  1116.         
  1117.         Unregistering
  1118.         -------------
  1119.         
  1120.         You can unregister by registering None, rather than an object::
  1121.         
  1122.         >>> registry.register([zope.interface.implementedBy(C2)], IP1, '', None)
  1123.         >>> registry.lookup([zope.interface.implementedBy(C2)], IP1, '')
  1124.         21
  1125.         
  1126.         Of course, this means that None can't be registered. This is an
  1127.         exception to the statement, made earlier, that the registry doesn't
  1128.         care what gets registered.
  1129.         
  1130.         Multi-adapters
  1131.         ==============
  1132.         
  1133.         You can adapt multiple specifications::
  1134.         
  1135.         >>> registry.register([IR1, IQ], IP2, '', '1q2')
  1136.         >>> registry.lookup([IR1, IQ], IP2, '')
  1137.         '1q2'
  1138.         >>> registry.lookup([IR2, IQ], IP1, '')
  1139.         '1q2'
  1140.         
  1141.         >>> class IS(zope.interface.Interface):
  1142.         ...     pass
  1143.         >>> registry.lookup([IR2, IS], IP1, '')
  1144.         
  1145.         >>> class IQ2(IQ):
  1146.         ...     pass
  1147.         
  1148.         >>> registry.lookup([IR2, IQ2], IP1, '')
  1149.         '1q2'
  1150.         
  1151.         >>> registry.register([IR1, IQ2], IP2, '', '1q22')
  1152.         >>> registry.lookup([IR2, IQ2], IP1, '')
  1153.         '1q22'
  1154.         
  1155.         Multi-adaptation
  1156.         ----------------
  1157.         
  1158.         You can adapt multiple objects::
  1159.         
  1160.         >>> class Q:
  1161.         ...     zope.interface.implements(IQ)
  1162.         
  1163.         As with single adapters, we register a factory, which is often a class::
  1164.         
  1165.         >>> class IM(zope.interface.Interface):
  1166.         ...     pass
  1167.         >>> class M:
  1168.         ...     zope.interface.implements(IM)
  1169.         ...     def __init__(self, x, q):
  1170.         ...         self.x, self.q = x, q
  1171.         >>> registry.register([IR, IQ], IM, '', M)
  1172.         
  1173.         And then we can call `queryMultiAdapter` to compute an adapter::
  1174.         
  1175.         >>> q = Q()
  1176.         >>> m = registry.queryMultiAdapter((x, q), IM)
  1177.         >>> m.__class__.__name__
  1178.         'M'
  1179.         >>> m.x is x and m.q is q
  1180.         True
  1181.         
  1182.         and, of course, we can use names::
  1183.         
  1184.         >>> class M2(M):
  1185.         ...     pass
  1186.         >>> registry.register([IR, IQ], IM, 'bob', M2)
  1187.         >>> m = registry.queryMultiAdapter((x, q), IM, 'bob')
  1188.         >>> m.__class__.__name__
  1189.         'M2'
  1190.         >>> m.x is x and m.q is q
  1191.         True
  1192.         
  1193.         Default Adapters
  1194.         ----------------
  1195.         
  1196.         As with single adapters, you can define default adapters by specifying
  1197.         None for the *first* specification::
  1198.         
  1199.         >>> registry.register([None, IQ], IP2, '', 'q2')
  1200.         >>> registry.lookup([IS, IQ], IP2, '')
  1201.         'q2'
  1202.         
  1203.         Null Adapters
  1204.         =============
  1205.         
  1206.         You can also adapt no specification::
  1207.         
  1208.         >>> registry.register([], IP2, '', 2)
  1209.         >>> registry.lookup([], IP2, '')
  1210.         2
  1211.         >>> registry.lookup([], IP1, '')
  1212.         2
  1213.         
  1214.         Listing named adapters
  1215.         ----------------------
  1216.         
  1217.         Adapters are named. Sometimes, it's useful to get all of the named
  1218.         adapters for given interfaces::
  1219.         
  1220.         >>> adapters = list(registry.lookupAll([IR1], IP1))
  1221.         >>> adapters.sort()
  1222.         >>> adapters
  1223.         [(u'', 11), (u'bob', "Bob's 12")]
  1224.         
  1225.         This works for multi-adapters too::
  1226.         
  1227.         >>> registry.register([IR1, IQ2], IP2, 'bob', '1q2 for bob')
  1228.         >>> adapters = list(registry.lookupAll([IR2, IQ2], IP1))
  1229.         >>> adapters.sort()
  1230.         >>> adapters
  1231.         [(u'', '1q22'), (u'bob', '1q2 for bob')]
  1232.         
  1233.         And even null adapters::
  1234.         
  1235.         >>> registry.register([], IP2, 'bob', 3)
  1236.         >>> adapters = list(registry.lookupAll([], IP1))
  1237.         >>> adapters.sort()
  1238.         >>> adapters
  1239.         [(u'', 2), (u'bob', 3)]
  1240.         
  1241.         Subscriptions
  1242.         =============
  1243.         
  1244.         Normally, we want to look up an object that most-closely matches a
  1245.         specification.  Sometimes, we want to get all of the objects that
  1246.         match some specification.  We use subscriptions for this.  We
  1247.         subscribe objects against specifications and then later find all of
  1248.         the subscribed objects::
  1249.         
  1250.         >>> registry.subscribe([IR1], IP2, 'sub12 1')
  1251.         >>> registry.subscriptions([IR1], IP2)
  1252.         ['sub12 1']
  1253.         
  1254.         Note that, unlike regular adapters, subscriptions are unnamed.
  1255.         
  1256.         You can have multiple subscribers for the same specification::
  1257.         
  1258.         >>> registry.subscribe([IR1], IP2, 'sub12 2')
  1259.         >>> registry.subscriptions([IR1], IP2)
  1260.         ['sub12 1', 'sub12 2']
  1261.         
  1262.         If subscribers are registered for the same required interfaces, they
  1263.         are returned in the order of definition.
  1264.         
  1265.         You can register subscribers for all specifications using None::
  1266.         
  1267.         >>> registry.subscribe([None], IP1, 'sub_1')
  1268.         >>> registry.subscriptions([IR2], IP1)
  1269.         ['sub_1', 'sub12 1', 'sub12 2']
  1270.         
  1271.         Note that the new subscriber is returned first.  Subscribers defined
  1272.         for less general required interfaces are returned before subscribers
  1273.         for more general interfaces.
  1274.         
  1275.         Subscriptions may be combined over multiple compatible specifications::
  1276.         
  1277.         >>> registry.subscriptions([IR2], IP1)
  1278.         ['sub_1', 'sub12 1', 'sub12 2']
  1279.         >>> registry.subscribe([IR1], IP1, 'sub11')
  1280.         >>> registry.subscriptions([IR2], IP1)
  1281.         ['sub_1', 'sub12 1', 'sub12 2', 'sub11']
  1282.         >>> registry.subscribe([IR2], IP2, 'sub22')
  1283.         >>> registry.subscriptions([IR2], IP1)
  1284.         ['sub_1', 'sub12 1', 'sub12 2', 'sub11', 'sub22']
  1285.         >>> registry.subscriptions([IR2], IP2)
  1286.         ['sub12 1', 'sub12 2', 'sub22']
  1287.         
  1288.         Subscriptions can be on multiple specifications::
  1289.         
  1290.         >>> registry.subscribe([IR1, IQ], IP2, 'sub1q2')
  1291.         >>> registry.subscriptions([IR1, IQ], IP2)
  1292.         ['sub1q2']
  1293.         
  1294.         As with single subscriptions and non-subscription adapters, you can
  1295.         specify None for the first required interface, to specify a default::
  1296.         
  1297.         >>> registry.subscribe([None, IQ], IP2, 'sub_q2')
  1298.         >>> registry.subscriptions([IS, IQ], IP2)
  1299.         ['sub_q2']
  1300.         >>> registry.subscriptions([IR1, IQ], IP2)
  1301.         ['sub_q2', 'sub1q2']
  1302.         
  1303.         You can have subscriptions that are indepenent of any specifications::
  1304.         
  1305.         >>> list(registry.subscriptions([], IP1))
  1306.         []
  1307.         
  1308.         >>> registry.subscribe([], IP2, 'sub2')
  1309.         >>> registry.subscriptions([], IP1)
  1310.         ['sub2']
  1311.         >>> registry.subscribe([], IP1, 'sub1')
  1312.         >>> registry.subscriptions([], IP1)
  1313.         ['sub2', 'sub1']
  1314.         >>> registry.subscriptions([], IP2)
  1315.         ['sub2']
  1316.         
  1317.         Unregistering subscribers
  1318.         -------------------------
  1319.         
  1320.         We can unregister subscribers.  When unregistering a subscriber, we
  1321.         can unregister a specific subscriber::
  1322.         
  1323.         >>> registry.unsubscribe([IR1], IP1, 'sub11')
  1324.         >>> registry.subscriptions([IR1], IP1)
  1325.         ['sub_1', 'sub12 1', 'sub12 2']
  1326.         
  1327.         If we don't specify a value, then all subscribers matching the given
  1328.         interfaces will be unsubscribed:
  1329.         
  1330.         >>> registry.unsubscribe([IR1], IP2)
  1331.         >>> registry.subscriptions([IR1], IP1)
  1332.         ['sub_1']
  1333.         
  1334.         
  1335.         Subscription adapters
  1336.         ---------------------
  1337.         
  1338.         We normally register adapter factories, which then allow us to compute
  1339.         adapters, but with subscriptions, we get multiple adapters.  Here's an
  1340.         example of multiple-object subscribers::
  1341.         
  1342.         >>> registry.subscribe([IR, IQ], IM, M)
  1343.         >>> registry.subscribe([IR, IQ], IM, M2)
  1344.         
  1345.         >>> subscribers = registry.subscribers((x, q), IM)
  1346.         >>> len(subscribers)
  1347.         2
  1348.         >>> class_names = [s.__class__.__name__ for s in subscribers]
  1349.         >>> class_names.sort()
  1350.         >>> class_names
  1351.         ['M', 'M2']
  1352.         >>> [(s.x is x and s.q is q) for s in subscribers]
  1353.         [True, True]
  1354.         
  1355.         adapter factory subcribers can't return None values::
  1356.         
  1357.         >>> def M3(x, y):
  1358.         ...     return None
  1359.         
  1360.         >>> registry.subscribe([IR, IQ], IM, M3)
  1361.         >>> subscribers = registry.subscribers((x, q), IM)
  1362.         >>> len(subscribers)
  1363.         2
  1364.         
  1365.         Handlers
  1366.         --------
  1367.         
  1368.         A handler is a subscriber factory that doesn't produce any normal
  1369.         output.  It returns None.  A handler is unlike adapters in that it does
  1370.         all of its work when the factory is called.
  1371.         
  1372.         To register a handler, simply provide None as the provided interface::
  1373.         
  1374.         >>> def handler(event):
  1375.         ...     print 'handler', event
  1376.         
  1377.         >>> registry.subscribe([IR1], None, handler)
  1378.         >>> registry.subscriptions([IR1], None) == [handler]
  1379.         True
  1380.         
  1381.         ==========================
  1382.         Using the Adapter Registry
  1383.         ==========================
  1384.         
  1385.         This is a small demonstration of the ``zope.interface`` package including its
  1386.         adapter registry. It is intended to provide a concrete but narrow example on
  1387.         how to use interfaces and adapters outside of Zope 3.
  1388.         
  1389.         First we have to import the interface package::
  1390.         
  1391.         >>> import zope.interface
  1392.         
  1393.         We now develop an interface for our object, which is a simple file in this
  1394.         case. For now we simply support one attribute, the body, which contains the
  1395.         actual file contents::
  1396.         
  1397.         >>> class IFile(zope.interface.Interface):
  1398.         ...
  1399.         ...     body = zope.interface.Attribute('Contents of the file.')
  1400.         ...
  1401.         
  1402.         For statistical reasons we often want to know the size of a file. However, it
  1403.         would be clumsy to implement the size directly in the file object, since the
  1404.         size really represents meta-data. Thus we create another interface that
  1405.         provides the size of something::
  1406.         
  1407.         >>> class ISize(zope.interface.Interface):
  1408.         ...
  1409.         ...     def getSize():
  1410.         ...         'Return the size of an object.'
  1411.         ...
  1412.         
  1413.         Now we need to implement the file. It is essential that the object states
  1414.         that it implements the `IFile` interface. We also provide a default body
  1415.         value (just to make things simpler for this example)::
  1416.         
  1417.         >>> class File(object):
  1418.         ...
  1419.         ...      zope.interface.implements(IFile)
  1420.         ...      body = 'foo bar'
  1421.         ...
  1422.         
  1423.         Next we implement an adapter that can provide the `ISize` interface given any
  1424.         object providing `IFile`. By convention we use `__used_for__` to specify the
  1425.         interface that we expect the adapted object to provide, in our case
  1426.         `IFile`. However, this attribute is not used for anything. If you have
  1427.         multiple interfaces for which an adapter is used, just specify the interfaces
  1428.         via a tuple.
  1429.         
  1430.         Again by convention, the constructor of an adapter takes one argument, the
  1431.         context. The context in this case is an instance of `File` (providing `IFile`)
  1432.         that is used to extract the size from. Also by convention the context is
  1433.         stored in an attribute named `context` on the adapter. The twisted community
  1434.         refers to the context as the `original` object. However, you may feel free to
  1435.         use a specific argument name, such as `file`::
  1436.         
  1437.         >>> class FileSize(object):
  1438.         ...
  1439.         ...      zope.interface.implements(ISize)
  1440.         ...      __used_for__ = IFile
  1441.         ...
  1442.         ...      def __init__(self, context):
  1443.         ...          self.context = context
  1444.         ...
  1445.         ...      def getSize(self):
  1446.         ...          return len(self.context.body)
  1447.         ...
  1448.         
  1449.         Now that we have written our adapter, we have to register it with an adapter
  1450.         registry, so that it can be looked up when needed. There is no such thing as a
  1451.         global registry; thus we have to instantiate one for our example manually::
  1452.         
  1453.         >>> from zope.interface.adapter import AdapterRegistry
  1454.         >>> registry = AdapterRegistry()
  1455.         
  1456.         
  1457.         The registry keeps a map of what adapters implement based on another
  1458.         interface, the object already provides. Therefore, we next have to register an
  1459.         adapter that adapts from `IFile` to `ISize`. The first argument to
  1460.         the registry's `register()` method is a list of original interfaces.In our
  1461.         cause we have only one original interface, `IFile`. A list makes sense, since
  1462.         the interface package has the concept of multi-adapters, which are adapters
  1463.         that require multiple objects to adapt to a new interface. In these
  1464.         situations, your adapter constructor will require an argument for each
  1465.         specified interface.
  1466.         
  1467.         The second argument is the interface the adapter provides, in our case
  1468.         `ISize`. The third argument is the name of the adapter. Since we do not care
  1469.         about names, we simply leave it as an empty string. Names are commonly useful,
  1470.         if you have adapters for the same set of interfaces, but they are useful in
  1471.         different situations. The last argument is simply the adapter class::
  1472.         
  1473.         >>> registry.register([IFile], ISize, '', FileSize)
  1474.         
  1475.         You can now use the the registry to lookup the adapter::
  1476.         
  1477.         >>> registry.lookup1(IFile, ISize, '')
  1478.         <class '__main__.FileSize'>
  1479.         
  1480.         Let's get a little bit more practical. Let's create a `File` instance and
  1481.         create the adapter using a registry lookup. Then we see whether the adapter
  1482.         returns the correct size by calling `getSize()`::
  1483.         
  1484.         >>> file = File()
  1485.         >>> size = registry.lookup1(IFile, ISize, '')(file)
  1486.         >>> size.getSize()
  1487.         7
  1488.         
  1489.         However, this is not very practical, since I have to manually pass in the
  1490.         arguments to the lookup method. There is some syntactic candy that will allow
  1491.         us to get an adapter instance by simply calling `ISize(file)`. To make use of
  1492.         this functionality, we need to add our registry to the adapter_hooks list,
  1493.         which is a member of the adapters module. This list stores a collection of
  1494.         callables that are automatically invoked when IFoo(obj) is called; their
  1495.         purpose is to locate adapters that implement an interface for a certain
  1496.         context instance.
  1497.         
  1498.         You are required to implement your own adapter hook; this example covers one
  1499.         of the simplest hooks that use the registry, but you could implement one that
  1500.         used an adapter cache or persistent adapters, for instance. The helper hook is
  1501.         required to expect as first argument the desired output interface (for us
  1502.         `ISize`) and as the second argument the context of the adapter (here
  1503.         `file`). The function returns an adapter, i.e. a `FileSize` instance::
  1504.         
  1505.         >>> def hook(provided, object):
  1506.         ...     adapter = registry.lookup1(zope.interface.providedBy(object),
  1507.         ...                                provided, '')
  1508.         ...     return adapter(object)
  1509.         ...
  1510.         
  1511.         We now just add the hook to an `adapter_hooks` list::
  1512.         
  1513.         >>> from zope.interface.interface import adapter_hooks
  1514.         >>> adapter_hooks.append(hook)
  1515.         
  1516.         Once the hook is registered, you can use the desired syntax::
  1517.         
  1518.         >>> size = ISize(file)
  1519.         >>> size.getSize()
  1520.         7
  1521.         
  1522.         Now we have to cleanup after ourselves, so that others after us have a clean
  1523.         `adapter_hooks` list::
  1524.         
  1525.         >>> adapter_hooks.remove(hook)
  1526.         
  1527.         That's it. I have intentionally left out a discussion of named adapters and
  1528.         multi-adapters, since this text is intended as a practical and simple
  1529.         introduction to Zope 3 interfaces and adapters. You might want to read the
  1530.         `adapter.txt` in the `zope.interface` package for a more formal, referencial
  1531.         and complete treatment of the package. Warning: People have reported that
  1532.         `adapter.txt` makes their brain feel soft!
  1533.         
  1534.         CHANGES
  1535.         *******
  1536.         
  1537.         ==================
  1538.         3.5.2 (2009-07-01)
  1539.         ==================
  1540.         
  1541.         - BaseAdapterRegistry.unregister, unsubscribe: Remove empty portions of
  1542.         the data structures when something is removed.  This avoids leaving
  1543.         references to global objects (interfaces) that may be slated for
  1544.         removal from the calling application.
  1545.         
  1546.         
  1547.         ==================
  1548.         3.5.1 (2009-03-18)
  1549.         ==================
  1550.         
  1551.         - verifyObject: use getattr instead of hasattr to test for object attributes
  1552.         in order to let exceptions other than AttributeError raised by properties
  1553.         propagate to the caller
  1554.         
  1555.         - Add Sphinx-based documentation building to the package buildout
  1556.         configuration. Use the ``bin/docs`` command after buildout.
  1557.         
  1558.         - Improve package description a bit. Unify changelog entries formatting.
  1559.         
  1560.         - Change package's mailing list address to zope-dev at zope.org as
  1561.         zope3-dev at zope.org is now retired.
  1562.         
  1563.         
  1564.         ==================
  1565.         3.5.0 (2008-10-26)
  1566.         ==================
  1567.         
  1568.         - Fixed declaration of _zope_interface_coptimizations, it's not a top level
  1569.         package.
  1570.         
  1571.         - Add a DocTestSuite for odd.py module, so their tests are run.
  1572.         
  1573.         - Allow to bootstrap on Jython.
  1574.         
  1575.         - Fix https://bugs.launchpad.net/zope3/3.3/+bug/98388: ISpecification
  1576.         was missing a declaration for __iro__.
  1577.         
  1578.         - Added optional code optimizations support, which allows the building
  1579.         of C code optimizations to fail (Jython).
  1580.         
  1581.         - Replaced `_flatten` with a non-recursive implementation, effectively making
  1582.         it 3x faster.
  1583.         
  1584.         
  1585.         ==================
  1586.         3.4.1 (2007-10-02)
  1587.         ==================
  1588.         
  1589.         - Fixed a setup bug that prevented installation from source on systems
  1590.         without setuptools.
  1591.         
  1592.         
  1593.         ==================
  1594.         3.4.0 (2007-07-19)
  1595.         ==================
  1596.         
  1597.         - Final release for 3.4.0.
  1598.         
  1599.         
  1600.         ====================
  1601.         3.4.0b3 (2007-05-22)
  1602.         ====================
  1603.         
  1604.         
  1605.         - Objects with picky custom comparison methods couldn't be added to
  1606.         component registries.  Now, when checking whether an object is
  1607.         already registered, identity comparison is used.
  1608.         
  1609.         
  1610.         ====================
  1611.         3.3.0.1 (2007-01-03)
  1612.         ====================
  1613.         
  1614.         - Made a reference to OverflowWarning, which disappeared in Python
  1615.         2.5, conditional.
  1616.         
  1617.         
  1618.         ==================
  1619.         3.3.0 (2007/01/03)
  1620.         ==================
  1621.         
  1622.         New Features
  1623.         ============
  1624.         
  1625.         - The adapter-lookup algorithim was refactored to make it
  1626.         much simpler and faster.
  1627.         
  1628.         Also, more of the adapter-lookup logic is implemented in C, making
  1629.         debugging of application code easier, since there is less
  1630.         infrastructre code to step through.
  1631.         
  1632.         - We now treat objects without interface declarations as if they
  1633.         declared that they provide zope.interface.Interface.
  1634.         
  1635.         - There are a number of richer new adapter-registration interfaces
  1636.         that provide greater control and introspection.
  1637.         
  1638.         - Added a new interface decorator to zope.interface that allows the
  1639.         setting of tagged values on an interface at definition time (see
  1640.         zope.interface.taggedValue).
  1641.         
  1642.         Bug Fixes
  1643.         =========
  1644.         
  1645.         - A bug in multi-adapter lookup sometimes caused incorrect adapters to
  1646.         be returned.
  1647.         
  1648.         
  1649.         ====================
  1650.         3.2.0.2 (2006-04-15)
  1651.         ====================
  1652.         
  1653.         - Fix packaging bug:  'package_dir' must be a *relative* path.
  1654.         
  1655.         
  1656.         ====================
  1657.         3.2.0.1 (2006-04-14)
  1658.         ====================
  1659.         
  1660.         - Packaging change:  suppress inclusion of 'setup.cfg' in 'sdist' builds.
  1661.         
  1662.         
  1663.         ==================
  1664.         3.2.0 (2006-01-05)
  1665.         ==================
  1666.         
  1667.         - Corresponds to the verison of the zope.interface package shipped as part of
  1668.         the Zope 3.2.0 release.
  1669.         
  1670.         
  1671.         ==================
  1672.         3.1.0 (2005-10-03)
  1673.         ==================
  1674.         
  1675.         - Corresponds to the verison of the zope.interface package shipped as part of
  1676.         the Zope 3.1.0 release.
  1677.         
  1678.         - Made attribute resolution order consistent with component lookup order,
  1679.         i.e. new-style class MRO semantics.
  1680.         
  1681.         - Deprecated 'isImplementedBy' and 'isImplementedByInstancesOf' APIs in
  1682.         favor of 'implementedBy' and 'providedBy'.
  1683.         
  1684.         
  1685.         ==================
  1686.         3.0.1 (2005-07-27)
  1687.         ==================
  1688.         
  1689.         - Corresponds to the verison of the zope.interface package shipped as part of
  1690.         the Zope X3.0.1 release.
  1691.         
  1692.         - Fixed a bug reported by James Knight, which caused adapter registries
  1693.         to fail occasionally to reflect declaration changes.
  1694.         
  1695.         
  1696.         ==================
  1697.         3.0.0 (2004-11-07)
  1698.         ==================
  1699.         
  1700.         - Corresponds to the verison of the zope.interface package shipped as part of
  1701.         the Zope X3.0.0 release.
  1702.         
  1703.         Download
  1704.         ********
  1705.         
  1706. Platform: UNKNOWN
  1707.